home *** CD-ROM | disk | FTP | other *** search
- onClipEvent(enterFrame){
- score = _root.lander.score;
- mval = score - score % 1000000;
- m.gotoAndStop(mval / 1000000 + 1);
- hthval = score - mval - score % 100000;
- hth.gotoAndStop(hthval / 100000 + 1);
- tthval = score - mval - hthval - score % 10000;
- tth.gotoAndStop(tthval / 10000 + 1);
- thval = score - mval - hthval - tthval - score % 1000;
- th.gotoAndStop(thval / 1000 + 1);
- hval = score - mval - hthval - tthval - thval - score % 100;
- h.gotoAndStop(hval / 100 + 1);
- tval = score - mval - hthval - tthval - thval - hval - score % 10;
- t.gotoAndStop(tval / 10 + 1);
- uval = score - mval - hthval - tthval - thval - hval - tval;
- u.gotoAndStop(uval + 1);
- }
-